home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / gimp.preinst < prev    next >
Encoding:
Text File  |  2012-03-06  |  331 b   |  12 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "install" -o "$1" = "upgrade" ]; then
  4.     # Clean up older links from this package
  5.     update-alternatives --remove gimp /usr/bin/gimp-1.2
  6.     update-alternatives --remove gimptool /usr/bin/gimptool-1.3
  7.     update-alternatives --remove gimp /usr/bin/gimp-2.0
  8.     update-alternatives --remove gimp /usr/bin/gimp-2.2
  9. fi
  10.  
  11.  
  12.